home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Merciful 2
/
Merciful - Disc 2.iso
/
software
/
i
/
imagefxv2.1a.lha
/
ImageFX
/
Rexx
/
CineMorph
/
Test.cmorph
< prev
Wrap
Text File
|
1996-03-02
|
360b
|
25 lines
/*
* Text macro for CineMorph
*
*/
OPTIONS RESULTS
GetImageSize ; PARSE VAR result width height
GetGridSize ; PARSE VAR result gridx gridy
LockGui
DO j = 0 TO (gridy-1)
DO i = 0 TO (gridx-1)
px = i * (width-1) / (gridx-1)
py = j * (height-1) / (gridy-1)
SetPoint Source i j px py
END
END
UnlockGui
RedrawGrid Source
EXIT